home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / patch / ps3b2.lha / Install-Fonts3.0b < prev    next >
Text File  |  1994-10-12  |  2KB  |  37 lines

  1. ;PAGESTREAM 3.0b FONTS ONLINE UPDATE INSTALLATION SCRIPT
  2. ;COPYRIGHT ©1994 SOFT-LOGIK PUBLISHING CORPORATION
  3.  
  4. ;SEE IF PAGESTREAM3 AND SOFTLOGIK ARE ASSIGNED AND THE FONT DIRECTORY EXISTS
  5. (set PGSdest (getassign "PageStream3" "a"))
  6. (set SLdest (getassign "SoftLogik" "a"))
  7. (if (OR (= PGSdest "") (= SLdest ""))
  8.     (abort "PageStream3: and/or SoftLogik: are not assigned. You must properly install PageStream3 before applying this update patch.")
  9. )
  10. (set @default-dest PGSdest)
  11. (if (<> (exists "PageStream3:Fonts/StandardFonts") 2)
  12.     (abort "The PageStream3:Fonts/StandardFonts directory is missing. You must properly install the fonts from your original PageStream3 disks before installing these font files.")
  13. )
  14.  
  15. (message "\nThis will install 725K of additional font files into your PageStream3:Fonts/StandardFonts directory. These fonts will allow you to print and display the bold and italic variants of the standard 35 fonts. Your original PageStream disks will not be modified.")
  16.  
  17. ;COPY THE LHEX PROGRAM TO RAM:
  18. (copyfiles
  19.     (source "PageStream3Disk1:lhex")
  20.     (dest "ram:")
  21.     (nogauge)
  22. )
  23.  
  24. ;UPDATE LIBS
  25. (working "Installing Fonts...")
  26. (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/StandardFonts x Fonts35x.lha")
  27. (delete "Fonts35x.LHA" (safe))
  28.  
  29. (message "\n\nYou MUST run PageStream3 after installation is complete and update a font path. Choose Settings/Fonts. Select the Fonts/StandardFonts path in the list and then click on the Update gadget. Click on the Save gadget to make the changes permanent.\n\nIf you do not do this, you will not be able to use the new fonts.")
  30.  
  31. ;REMOVE THE LHARC PROGRAM
  32. (delete "ram:lhex" (safe))
  33. (delete "Install-Fonts3.0b.info" (safe))
  34.  
  35. ;GEE, THAT WAS FUN
  36. (exit "New fonts installed!")
  37.